home *** CD-ROM | disk | FTP | other *** search
/ Amiga Developer CD 2.1 / Amiga Developer CD v2.1.iso / Reference / Includes_and_Autodocs_3.5 / include / clib / keymap_protos.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-10-28  |  860 b   |  34 lines

  1. #ifndef  CLIB_KEYMAP_PROTOS_H
  2. #define  CLIB_KEYMAP_PROTOS_H
  3.  
  4. /*
  5. **    $VER: keymap_protos.h 40.1 (17.5.1996)
  6. **
  7. **    C prototypes. For use with 32 bit integers only.
  8. **
  9. **    Copyright © 1999 Amiga, Inc.
  10. **        All Rights Reserved
  11. */
  12.  
  13. #ifdef __cplusplus
  14. extern "C" {
  15. #endif /* __cplusplus */
  16.  
  17. #ifndef  DEVICES_INPUTEVENT_H
  18. #include <devices/inputevent.h>
  19. #endif
  20. #ifndef  DEVICES_KEYMAP_H
  21. #include <devices/keymap.h>
  22. #endif
  23. /*--- functions in V36 or higher (Release 2.0) ---*/
  24. VOID SetKeyMapDefault( CONST struct KeyMap *keyMap );
  25. struct KeyMap *AskKeyMapDefault( VOID );
  26. WORD MapRawKey( CONST struct InputEvent *event, STRPTR buffer, LONG length, CONST struct KeyMap *keyMap );
  27. LONG MapANSI( CONST_STRPTR string, LONG count, STRPTR buffer, LONG length, CONST struct KeyMap *keyMap );
  28.  
  29. #ifdef __cplusplus
  30. }
  31. #endif /* __cplusplus */
  32.  
  33. #endif   /* CLIB_KEYMAP_PROTOS_H */
  34.